
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 60px 8%;
  border-radius: 0 0 60px 60px;
}

.hero-content {
  max-width: 600px;
}
/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* TAG */
.tagline {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 26px;
  }
}

/* TERMS SECTION */
.terms {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.terms-container {
  max-width: 800px;
  width: 100%;
}

/* HEADING */
.terms h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

/* INTRO */
.terms .intro {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.8;
}

/* BOX STYLE (same as refund) */
.term-box {
  background: #ffffff;
  padding: 22px 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* HOVER */
.term-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* HEADINGS */
.term-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXT */
.term-box p {
  color: #6b7280;
  margin-bottom: 10px;
  line-height: 1.7;
}

/* LIST */
.term-box ul {
  margin-left: 18px;
}

.term-box ul li {
  color: #6b7280;
  margin-bottom: 6px;
  line-height: 1.7;
}

/* TABLE */
.deposit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.deposit-table th,
.deposit-table td {
  padding: 12px;
  text-align: left;
}

.deposit-table th {
  background: #2563eb;
  color: white;
  font-weight: 600;
}

.deposit-table td {
  border-bottom: 1px solid #eee;
  color: #374151;
}

/* ROW HOVER */
.deposit-table tr:hover td {
  background: #f9fafc;
}

/* CTA */
.cta {
  text-align: center;
  padding-bottom: 80px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  gap: 10px;
}

.call-btn {
  background: #33b5e5;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  gap: 10px;
}
/* CTA SECTION */
.cta {
  text-align: center;
  background: #2563eb;
  color: white;
  border-radius: 40px;
  padding: 50px 20px;
  margin: 40px 8%;
}

.cta p {
  font-size: 18px;
  margin-bottom: 25px;
}